home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / prog / pcxtpi.arj / LGUNIT.PAS < prev    next >
Pascal/Delphi Source File  |  1992-12-29  |  189b  |  17 lines

  1. UNIT LGUNIT; {Linked Graphic Unit}
  2.  
  3. INTERFACE
  4.  
  5. USES DOS;
  6.  
  7. {$L graphic2.OBJ}
  8. procedure graphic2;
  9.  
  10. IMPLEMENTATION
  11. procedure graphic2; external;
  12.  
  13.  
  14. BEGIN
  15. END.
  16.  
  17. {Not much to it.}